home *** CD-ROM | disk | FTP | other *** search
- ConnCheck = {dbg:function(str)
- {
- trace("ConnCheck." + str);
- },test:function()
- {
- Tardis.debug.addProcess("monitorTracking","ConnCheck.test()");
- lingo("Flsh_connection_startCheck");
- },onTimerComplete:function()
- {
- Tardis.debug.addProcess("monitorTracking","ConnCheck.onTimerComplete()");
- this.test();
- },startTimer:function()
- {
- this.test();
- this.stopTimer();
- this.nmTimerID = setInterval(this,"onTimerComplete",this.TIMER_INTERVAL * 1000);
- },stopTimer:function()
- {
- clearInterval(this.nmTimerID);
- },TIMER_INTERVAL:null,DEBUG:"verbose"};
-